Fun with type functions
#論文メモ
著者
Oleg Kiselyov
Simon Peyton Jones
Chung-chieh Shan
2010/5/3
大まかな流れ
Abstract
1 Introduction
2 Associated types: indexing types by types
3 Optimised container representations
4 Typed sprintf and sscanf
5 Fun with phantom types
6 Related work and reflections
Acknowlegdments
References
Appendices
A The Rules
B Pitfalls
C Sprintf revisited
#WIP
TypeFamilies拡張の紹介、tutorialな感じの論文
https://www.microsoft.com/en-us/research/wp-content/uploads/2016/07/typefun.pdf
https://wiki.haskell.org/Simonpj/Talk:FunWithTypeFuns
https://qiita.com/rooooomania/items/c6da1158d676e6fe87e2
Abstract
特に何も言っていない
このpaperでTypeFamiliesのtutotrial的なものを紹介するよ
1 Introduction
静的型付けは形式仕様記述言語としては弱いものの、良い点もある
軽量である、簡易に検査ができる、適当に欺くことはできないなど
しかし、雑魚い型システムは、良いプログラムを拒否し、悪いプログラムを許容してしまうこともある
型システムの設計者はコレを防ぎたい
type familyはその一環
2 Associated types: indexing types by types
3 Optimised container representations
4 Typed sprintf and sscanf
5 Fun with phantom types
6 Related work and reflections
Acknowlegdments